home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PsL Monthly 1993 December
/
PSL Monthly Shareware CD-ROM (December 1993).iso
/
prgmming
/
dos
/
c
/
tegl_c.exe
/
SAMPROGS.ZIP
/
SAMC0406.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-05-13
|
473 b
|
35 lines
/* samc0406.c */
#include "teglsys.h"
void main()
{
imagestkptr fs;
unsigned i;
easytegl();
pushimage(1,1,50,50);
shadowbox(1,1,50,50);
fs = stackptr;
showmouse();
i = 20000;
do
{
--i;
if (i == 10000)
hideimage(fs);
if (i == 0)
{
showimage(fs,fs->x,fs->y);
i = 20000;
}
}
while( mouse_buttons == 0 );
if (i <= 10000)
showimage(fs,fs->x,fs->y);
}